home *** CD-ROM | disk | FTP | other *** search
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <title>Array</title>
- </head>
- <body>
- <pre>
- <?php
- $vettore_a = array (2, 5, 7, 9, 11);
- // dichiarazione esplicita con elementi solo numerici
-
- $vettore_b = array (2, "pippo", true, 1.24, array (1,2,3));
- // dichiarazione esplicita con elementi misti
-
- $vettore_d[0] = 2;
- $vettore_d[1] = "pippo";
- // dichiarazione implicita con elementi misti
-
- echo "<br>Vettore_a:<br>";
- print_r ($vettore_a);
-
- echo "<p>Vettore_b:<br>";
- print_r ($vettore_b);
-
- echo "<p>Vettore_d:<br>";
- print_r ($vettore_d);
- ?>
- </pre>
- </body>
- </html>